home *** CD-ROM | disk | FTP | other *** search
- #
- # Copyright (C) 2004 Tenable Network Security
- #
- #
-
- if(description)
- {
- script_id(12002);
- script_version("$Revision: 1.5 $");
-
- name["english"] = "LOP.COM detection";
-
- script_name(english:name["english"]);
-
- desc["english"] = "
- The remote host is using the LOP.COM program. You should ensure that:
- - the user intended to install LOP.COM (it is sometimes silently installed)
- - the use of LOP.COM matches your Corporate mandates and Security Policies.
-
- To remove this sort of software, you may wish to check out ad-aware or spybot.
-
- See also : http://www.safersite.com/PestInfo/l/lop_com.asp
-
- Solution : Uninstall this software
- Risk factor : High";
-
-
-
- script_description(english:desc["english"]);
-
- summary["english"] = "LOP.COM detection";
-
- script_summary(english:summary["english"]);
-
- script_category(ACT_GATHER_INFO);
-
- script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
- family["english"] = "Windows";
- script_family(english:family["english"]);
-
- script_dependencies( "smb_registry_full_access.nasl");
- script_require_keys("SMB/registry_full_access");
-
- script_require_ports(139, 445);
- exit(0);
- }
-
-
- # start the script
- if ( ! get_kb_item("SMB/registry_full_access") ) exit(0);
-
- path[0] = "clsid\{d44b5436-b3e4-4595-b0e9-106690e70a58}";
- path[1] = "software\classes\clsid\{162ab497-087d-4fb3-83ba-4f5159613796}";
- path[2] = "software\classes\clsid\{80fddae7-d472-4e1f-8c3a-36b75a091c44}";
- path[3] = "software\classes\clsid\{9b35a850-66ab-4c6d-8a66-136ecadcd904}";
- path[4] = "software\classes\clsid\{b9c38317-4e71-4d7b-b072-3aa8dda923b3}";
- path[5] = "software\classes\clsid\{d3119527-9be0-422c-b9fa-5143d75dfbea}";
- path[6] = "software\classes\clsid\{d44b5436-b3e4-4595-b0e9-106690e70a58}";
- path[7] = "software\classes\clsid\{e69e6d3b-861e-4c8b-bdd4-a8b7a61af313}";
- path[8] = "software\microsoft\internet explorer\toolbar\{80fddae7-d472-4e1f-8c3a-36b75a091c44}";
- path[9] = "software\microsoft\internet explorer\toolbar\{9b35a850-66ab-4c6d-8a66-136ecadcd904}";
- path[10] = "software\microsoft\internet explorer\toolbar\{d3119527-9be0-422c-b9fa-5143d75dfbea}";
- path[11] = "software\microsoft\internet explorer\toolbar\{ec28a907-37ac-4d9a-a928-ee2ba555a141}";
- path[12] ="software\microsoft\windows\currentversion\explorer\browser helper objects\{162ab497-087d-4fb3-83ba-4f5159613796}";
- path[13] ="software\microsoft\windows\currentversion\explorer\browser helper objects\{4b8edc53-6cfd-4ee4-9504-38ce7a5bc416}";
- path[14] ="software\microsoft\windows\currentversion\explorer\browser helper objects\{7dd896a9-7aeb-430f-955b-cd125604fdcb}";
- path[15] ="software\microsoft\windows\currentversion\explorer\browser helper objects\{b9c38317-4e71-4d7b-b072-3aa8dda923b3}";
- path[16] ="software\microsoft\windows\currentversion\explorer\browser helper objects\{e69e6d3b-861e-4c8b-bdd4-a8b7a61af313}";
- path[17] ="software\microsoft\windows\currentversion\installer\products\c8d617f6f8933d11581e000540386890\webpublfiles\usage";
- path[18] = "software\microsoft\windows\currentversion\run\twquh";
- path[19] = "software\microsoft\windows\currentversion\run\winactive";
- path[20] = "software\microsoft\windows\currentversion\run\wstpsh";
- path[21] = "software\microsoft\windows\currentversion\run\ybmk";
- path[22] = "software\microsoft\windows\currentversion\uninstall\nthlllleth";
- path[23] = "software\microsoft\windows\currentversion\uninstall\shubryochuss";
-
-
-
-
-
- global_var handle;
-
- include("smb_nt.inc");
- x_name = kb_smb_name();
- if(!x_name)exit(0);
-
- _smb_port = kb_smb_transport();
- if(!_smb_port)exit(0);
-
- if(!get_port_state(_smb_port)) exit(0);
- login = kb_smb_login();
- pass = kb_smb_password();
- domain = kb_smb_domain();
-
- if(!login)login = "";
- if(!pass) pass = "";
-
-
- soc = open_sock_tcp(_smb_port);
- if(!soc) exit(0);
-
- #
- # Request the session
- #
- r = smb_session_request(soc:soc, remote:x_name);
- if(!r) { close(soc); exit(0); }
-
- #
- # Negociate the protocol
- #
- prot = smb_neg_prot(soc:soc);
- if(!prot){ close(soc); exit(0); }
-
-
- r = smb_session_setup(soc:soc, login:login, password:pass, domain:domain, prot:prot);
- if(!r){ close(soc); exit(0); }
- uid = session_extract_uid(reply:r);
-
- r = smb_tconx(soc:soc, name:x_name, uid:uid, share:"IPC$");
- tid = tconx_extract_tid(reply:r);
- if(!tid){ close(soc); exit(0); }
-
-
- r = smbntcreatex(soc:soc, uid:uid, tid:tid, name:"\winreg");
- if(!r){ close(soc); exit(0);}
- pipe = smbntcreatex_extract_pipe(reply:r);
-
- r = pipe_accessible_registry(soc:soc, uid:uid, tid:tid, pipe:pipe);
- if(!r){ close(soc); exit(0); }
- handle = registry_open_hklm(soc:soc, uid:uid, tid:tid, pipe:pipe);
- if ( ! handle ) exit(0);
-
-
- for (i=0; path[i]; i++) {
- key_h = registry_get_key(soc:soc, uid:uid, tid:tid, pipe:pipe, key:path[i], reply:handle);
- if(key_h != NULL) {security_hole(kb_smb_transport()); exit(0); }
- }
-
- close(soc);
-